home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / UInformationView.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  764 b   |  34 lines  |  [TEXT/MPS ]

  1. //     UInformationView.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the class TInformationView, used to present
  5. //    the information obtained over the network in the rightmost view
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __INFORMATIONVIEW__
  11. #define __INFORMATIONVIEW__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17.  
  18. class TInformationView : public TView
  19. {
  20. public:
  21.     TInformationView();
  22.     virtual pascal void Initialize();
  23.     virtual pascal void Draw(const VRect& area);
  24.     virtual pascal void DrawInformation();
  25.  
  26.     //    FIELDS
  27.     Boolean fHasGestaltInfo;
  28.     CStr255 fLabel1, fLabel2, fLabel3, fLabel4, fLabel5, fLabel6, 
  29.             fLabel7, fLabel8, fLabel9, fLabel10, fLabel11, fLabel12;
  30. };
  31.  
  32. #endif
  33.  
  34.